home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005.7z / CHIP Utilities 2005.iso / CHIP Utilities / Zarzadzanie i bezpieczenstwo systemu / MBSA / MBSASetup-EN.msi / Data.Cab / reportnamelist.xsl < prev    next >
Extensible Markup Language  |  2004-08-13  |  402b  |  13 lines

  1. <?xml version="1.0"?> 
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:template match="/">
  4.     <xsl:for-each select="Reports">
  5.         <xsl:apply-templates>
  6.             <xsl:sort order="sortorder" select="sortfield"/>
  7.         </xsl:apply-templates>
  8.     </xsl:for-each>
  9. </xsl:template>
  10.  
  11. <xsl:template match="Report"><xsl:value-of select="@file"/>,</xsl:template>
  12.  
  13. </xsl:stylesheet>